home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 5 #3 / Selectware - The Ultimate Software Demonstration System - Selectware.ISO / acc20002 / copyfile.swt / SWTDEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-11-18  |  1002 b   |  60 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo     Follow the instructions on the screen to configure
  6. echo     the demo for your system.  
  7. echo.
  8. echo     1. Use Internal Speaker
  9. echo     2. Adlib, SoundBlaster, and compatables
  10. echo     3. MT-32 or LAPC-1
  11. echo     4. No music
  12. echo     5. Quit
  13. echo.
  14. echo Please enter the number for your choice:
  15. query
  16.  
  17. if errorlevel = 5 goto exit
  18. if errorlevel = 4 goto nomusic
  19. if errorlevel = 3 goto mt32
  20. if errorlevel = 2 goto adlib
  21. if errorlevel = 1 goto inter
  22.  
  23. echo Unavailable choice.
  24. pause
  25. goto start
  26.  
  27. REM Use interal speaker
  28. :inter
  29. echo.
  30. echo.
  31. echo Loading interactive demo
  32. HB3DEMO.EXE PC
  33. goto exit
  34.  
  35. REM Use adlib, soundblaster speaker
  36. :adlib
  37. echo.
  38. echo.
  39. echo Loading interactive demo
  40. HB3DEMO.EXE ADLIB
  41. goto exit
  42.  
  43. REM Use MT-32 speaker
  44. :mt32
  45. echo.
  46. echo.
  47. echo Loading interactive demo
  48. HB3DEMO.EXE MT32
  49. goto exit
  50.  
  51. REM Use None speaker
  52. :nomusic
  53. echo.
  54. echo.
  55. echo Loading interactive demo
  56. HB3DEMO.EXE NONE
  57. goto exit
  58.  
  59. :exit
  60.